home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 36 / Amiga Format CD36 (1999-01-22)(Future Publishing)(GB)[!][issue 1999-02].iso / -seriously_amiga- / wb / assignmaster / install / deutsch next >
Text File  |  1998-11-25  |  4KB  |  129 lines

  1. (welcome "Willkommen zum Installationshilfsmittel für AssignMaster.")
  2.  
  3. (if (= (askbool (prompt "A C H T U N G !\n\n"
  4.                         "Eine ältere Version des AssignMasters "
  5.                         "solle (eingeschlossen aller Sicherungsdateien) "
  6.                         "zuvor aus dem System entfernt werden.\n\n"
  7.                         "Soll mit der installation fortgefahren werden?")
  8.                 (help @askbool-help)
  9.                 (default 1)
  10.         ) 0)
  11.   (
  12.     (exit (cat "\n\nDer Benutzer hat die Installation abgebrochen."
  13.                "Es wirden keine Dateien kopiert.")
  14.           (quiet)
  15.     )
  16.   )
  17. )
  18.  
  19. (set #destination_prg (askdir (prompt "Bitte wähle jetzt das Zielverzeichnis "
  20.                                       "für die Programmdatei.")
  21.                               (help @askdir-help)
  22.                               (default "SYS:Tools")
  23.                       )
  24. )
  25.  
  26. (set #destination_amloader (askdir (prompt "Wohin soll das Installationsprogramm "
  27.                                            "für die Zuweisungslisten kopiert werden?")
  28.                                    (help @askdir-help)
  29.                                    (default "C:")
  30.                            )
  31. )
  32.  
  33.  
  34. (set #destination_doc (askdir (prompt "Wohin soll die Dokumentation "
  35.                                       "kopiert werden?")
  36.                               (help @askdir-help)
  37.                               (default "HELP:")
  38.                       )
  39. )
  40.  
  41. (set #libcopy (askbool (prompt "Soll die Support-Bibliothek für AssignMaster "
  42.                                "installiert werden?\n\nSie wird nur für die "
  43.                                "Handhabung der Startup-Dateien benötigt. Dieses "
  44.                                "Feature arbeitet allerdings noch nicht korrekt!")
  45.                        (help @askbool-help)
  46.                        (default 0)
  47.               )
  48. )
  49.  
  50. (copyfiles (prompt "Kopiere Programmdatei...")
  51.            (help @copyfiles-help)
  52.            (source "/AssignMaster")
  53.            (dest #destination_prg)
  54.            (files)
  55.            (confirm)
  56.            (infos)
  57. )
  58.  
  59. (copyfiles (prompt "Kopiere Assign installer...")
  60.            (help @copyfiles-help)
  61.            (source "/AMLoader")
  62.            (dest #destination_amloader)
  63.            (files)
  64.            (confirm)
  65. )
  66.  
  67. (copyfiles (prompt "Kopiere Dokumentation...")
  68.            (help @copyfiles-help)
  69.            (source "/docs/AM_Eng.GUIDE")
  70.            (dest #destination_doc)
  71.            (newname "AssignMaster.guide")
  72.            (files)
  73.            (confirm)
  74.            (infos)
  75. )
  76.  
  77. (copyfiles (prompt "Kopiere Programmgeschichte...")
  78.            (help @copyfiles-help)
  79.            (source "/docs/AM_History.txt")
  80.            (dest #destination_doc)
  81.            (newname "AssignMaster.History")
  82.            (files)
  83.            (infos)
  84.            (confirm)
  85. )
  86.  
  87. (if (= 1 #libcopy)
  88.  
  89.   (copylib (prompt "Kopiere Support-Bibliothek...")
  90.            (help @copyfiles-help)
  91.            (source "/libs/amsupport.library")
  92.            (dest "LIBS:")
  93.   )
  94. )
  95.  
  96. (if (= 1 (askbool (prompt "Soll die aktuelle Assign-Liste jetzt gesichert "
  97.                           "werden?")
  98.                   (help @askbool-help)
  99.                   (default 0)
  100.                   (choices "Ja" "Nein")
  101.          )
  102.     )
  103.   (
  104.     (set #savefile (askfile (prompt "Bitte wähle jetzt den Namen (und Pfad)"
  105.                                     " der anzulegenden Sicherungsdatei:")
  106.                             (help @askfile-help)
  107.                             (default #destination_prg)
  108.                    )
  109.     )
  110.     (set #amcommand (cat (tackon #destination_prg "AssignMaster")
  111.                          " BACKUP=\""
  112.                          #savefile
  113.                          "\"")
  114.     )
  115.     (run #amcommand (prompt (cat "Speichere Assign-Liste in Datei:\n"
  116.                                  #savefile)
  117.                     )
  118.                     (help @run-help)
  119.                     (confirm)
  120.     )
  121.   )
  122. )
  123.  
  124. (exit (cat "Installation beendet.\n\n")
  125.       (quiet)
  126. )
  127.  
  128.  
  129.